home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 April / Informatica Multimedia CD - Epimundo.iso / DOS / ARCHIVE / ZCE.ZIP / UNZIP.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-12-09  |  343 b   |  20 lines

  1. @echo off
  2. clr
  3. set ZDSELECT=
  4. zd a:*.zip /sel /fo
  5. if "%ZDSELECT%"=="" goto DONE
  6. if errorlevel 5 goto DONE
  7. if errorlevel 4 goto DONE
  8. if errorlevel 3 goto DONE
  9. if errorlevel 2 goto DONE
  10. if errorlevel 1 goto DONE
  11. echo creating %ZDSELECT% directory
  12. mkdir %ZDSELECT%
  13. cd %ZDSELECT%
  14. pkunzip a:%ZDSELECT%
  15. clr
  16. :DONE
  17. set ZDSELECT=
  18. dir
  19.  
  20.